/* preloader */
#preloader {
  position: fixed;
  display: table;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display:none;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 999999999;
}

#preloader .tb-cell {
  display: table-cell;
  vertical-align: middle;
}

#preloader .page-loading .item-icon {
  width: 40px;
  height: 40px;
  margin: auto;
  opacity: .9;
  border-right: 3px solid #945b35;
  border-bottom: 3px solid transparent;
  border-radius: 100%;
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  -o-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
  }
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }

  50% {
    -moz-transform: rotate(180deg);
  }

  100% {
    -moz-transform: rotate(359deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }

  50% {
    -o-transform: rotate(180deg);
  }

  100% {
    -o-transform: rotate(359deg);
  }
}

.container {
  overflow-x: hidden;
}

/* header */
#header {
  padding: 0;
  box-sizing: border-box;
  width: 1190px;
  height: 111px;
  background: url(../images/nav/head-bg.jpg) no-repeat center center;
  background-size: contain;
  margin: 0 auto;
}

.search-box .phone {
  color: #855d45;
  font-size: 14px;
  text-align: right;
  padding-right: 8px;
}

.search-box .search {
  width: 181px;
  height: 28px;
  border: 1px solid #855d45;
  border-radius: 40px;
  box-sizing: border-box;
  padding: 0 15px;
  margin-top: 10px;
  font-size: 14px;
  text-align: right;
}

.search-box .search .search-input {
  width: 128px;
  height: 25px;
  border: none;
  color: #855d45;
}

.search-box .search .search-input::placeholder {
  color: #855d45;
}

.search-box .search .submit-btn {
  width: 17px;
  height: 17px;
  background: url(../images/home/search.png) no-repeat center;
  background-size: cover;
  border: none;
}

/* nav */
.hl_nav {
  width: 1190px;
  height: 63px;
  background: url(../images/nav/nav-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  margin: 0 auto;
}

.hl_nav a {
  display: block;
  text-decoration: none;
}

.hl_nav .shade {
  position: absolute;
  width: 100%;
  height: 0;
  top: 63px;
  left: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all .2s linear;
}

.hl_nav .nav_list {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0;
  list-style: none;
  width: 100%;
  overflow: hidden;
  height: 63px;
}

.hl_nav .nav_list>li {
  padding: 0;
  float: left;
  margin: 0;
  width: 99px;
  text-align: center;
  height: 400px;
}

.hl_nav .active .nav_head {
  color: #651717;
}

.hl_nav .nav_head {
  width: 100px;
  font-size: 14px;
  text-align: center;
  line-height: 63px;
  color: #fff;
  position: relative;
  cursor: pointer;
}

.hl_nav .item {
  height: 40px;
  line-height: 40px;
  color: #fff;
  position: relative;
  transition: all .3s linear;
  font-size: 12px;
}

.hl_nav .item:hover {
  color: #F5B62A;
}

.hl_nav .nav_list:hover {
  height: 400px;
  transition: height 0.3s;
}

.hl_nav .nav_list:hover+.shade {
  height: 337px;
  transition: all .3s ease;
}

.hl_nav .nav_list>li.highlight:hover {
  transition: all .2s linear;
  background: rgba(0, 0, 0, .3);
}

.hl_nav .nav_list>li:hover .nav_head,
.hl_nav .nav_list>li.active .nav_head {
  background: url(../images/nav/nav-selected.png) no-repeat center center;
  background-size: cover;
  transition: all .3s linear;
  width: 98px;
}

/* index-swiper */
.index-swiper {
  width: 1190px;
  height: 540px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.index-swiper-container,
.team-swiper-container {
  width: 100%;
  height: 100%;
}

.index-swiper-container .swiper-pagination {
  left: 50% !important;
  transform: translateX(-50%);
  height: 25px;
  bottom: 34px !important;
  border-radius: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  width: auto !important;
  box-sizing: border-box;
  padding: 0 18px;
}


.swiper-slide {
  position: relative;
  overflow: hidden;
height: 540px;
width: 100%;
}

.index-swiper-container .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  vertical-align: bottom;
  background-color: #dbd7d4;
  transition: all .25s linear;
}

.index-swiper-container .swiper-pagination-bullet-active {
  width: 28px;
  background: #fff;
  border-radius: 14px !important;
}

.index-swiper-container .swiper-button-prev:after,
.index-swiper-container .swiper-container-rtl .swiper-button-next:after {
  font-size: 28px !important;
  font-weight: bold;
}

.index-swiper-container .swiper-button-prev,
.index-swiper-container .swiper-button-next {
  width: 38px;
  height: 77px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
}

.index-swiper-container .swiper-button-prev {
  left: 36px;
}

.index-swiper-container .swiper-button-next {
  right: 36px;
}

.full {
  position: absolute; 
left:50%;
top: 0;
transform: translateX(-50%)
}

.full img {
  width: auto;
  height: 540px;
display: block;
margin: 0 auto;
}

/* notice */
.notice {
  height: 42px;
  background-color: #fff;
  position: relative;
  margin-top: -34px;
  z-index: 10;
}

.notice-scroll-box {
  overflow: hidden;
  width: 1106px;
  height: 42px;
  box-sizing: border-box;
  padding: 0 10px;
}

.notice-scroll-box li {
  height: 42px;
}

.notice-scroll-box li div {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.notice-scroll-box li div p {
  color: #905e43;
  line-height: 42px;
}

.notice .notice-left-icon {
  margin-left: 12px;
}

.notice .notice-right-icon {
  margin-left: 4px;
}

/* 新闻中心 */
.news-center-container {
  width: 100%;
  height: 644px;
  padding-top: 25px;
  box-sizing: border-box;
  background: url(../images/home/news-bg.jpg) no-repeat center;
  background-size: cover;
}

.news-center-left {
  margin-left: 5px;
}

.news-center-left .news-left-title {
  width: 807px;
  height: 36px;
  background: url(../images/home/tit-bg.png) no-repeat center center;
  background-size: cover;
  color: #ffffff;
  box-sizing: border-box;
  position: relative;
  padding: 0 15px;
}

.news-center-left .news-left-title .tit {
  font-size: 22px;
}

.news-center-left .news-left-title ul {
  margin-left: 11px;
}

.news-center-left .news-left-title ul li:last-child {
  border-right: none;
}

.news-center-left .news-left-title ul li {
  line-height: 16px;
  padding: 0 15px;
  color: #ffffff;
  box-sizing: border-box;
  border-right: 2px solid #ffffff;
}

.more {
  position: absolute;
  top: 0;
  color: #9a7150;
  height: 36px;
  line-height: 36px;
  right: 15px;
}

.news-right-title {
  width: 357px;
  height: 36px;
  background: url(../images/home/tit-right-bg.png) no-repeat center center;
  background-size: cover;
  color: #ffffff;
  box-sizing: border-box;
  position: relative;
  padding: 0 15px;
}

.news-right-title .tit {
  font-size: 22px;
}

.news-center-left-main {
  width: 807px;
  box-sizing: border-box;
}

.news-center-left-main .left-box {
  padding: 0 24px;
}

.news-center-right-main {
  width: 357px;
  box-sizing: border-box;
  padding: 0 18px;
}

.news-center-left-main,
.news-center-right-main {
  margin-top: 28px;
}

.news-center-left-main .image-box {
  width: 306px
}

.news-center-left-main .image-box img {
  width: 100%;
  height: 215px;
}

.news-center-left-main .image-box .bot-text {
  width: 100%;
  border: 1px solid #d8d8d8;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #8a5a47;
  box-sizing: border-box;
  padding: 0 6px;
}

.text-content {
  width: 427px;
  text-align: left;
  box-sizing: border-box;
}

.text-content>a {
  width: 427px;
  display: block;
}

.text-content .tit {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #b72121;
}

.text-content .intro {
  font-size: 16px;
  margin-top: 14px;
  color: #b68a77;
}

.text-content .text-content-news {
  width: 100%;
}

.text-content .text-content-news li {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  color: #8a5a47;
  display: flex;
  align-items: center;
  margin-top: 13px;
}

.news-text {
  cursor: pointer;
  margin-left: 8px;
  flex: 1;
}

.news-text:hover {
  transition: all .25s linear;
  color: #be0e01;
}

.news-time {
  width: 40px;
  height: 20px;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  background-color: #b07d69;
}

.news-center-right .video-box {
  width: 325px;
  height: 241px;
  margin: 0 auto;
  margin-top: 28px;
  border: 4px solid #f8eae3;
}

.news-center-right .video-box>video {
  object-fit: fill;
}

.spec-news {
  margin-top: 22px;
}

.spec-news .spec-news-tit {
  width: 789px;
  height: 39px;
  line-height: 39px;
  position: relative;
  background: url(../images/home/subtit-bg.png) no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
  padding: 0 22px;
  margin: 0 auto;
}

.spec-news .spec-news-tit .more {
  right: 22px;
}

.spec-news-tit .left-text {
  color: #b84729;
  font-size: 18px;
}

.spec-news .text-content {
  width: 100%;
  box-sizing: border-box;
  padding: 0 12px 0 24px;
}

.spec-news .text-content .text-content-news {
  width: 390px;
  margin: 0 0 auto 0;
}

.spec-news .text-content .text-content-news:last-child {
  width: 360px;
}

.news-center-right .quick-nav-box {
  width: 333px;
  margin: 0 auto;
  margin-top: 25px;
}

.news-center-right .quick-nav-box .item {
  width: 158px;
  height: 100px;
  line-height: 100px;
  margin-top: 15px;
  box-sizing: border-box;
  padding-left: 40px;
  color: #fff;
  font-size: 20px;
  background-size: cover;
}

.quick-nav-box .item1 {
  background: url(../images/home/right-quick-nav1.png) no-repeat center center;
}

.quick-nav-box .item2 {
  background: url(../images/home/right-quick-nav2.png) no-repeat center center;
}

.quick-nav-box .item3 {
  background: url(../images/home/right-quick-nav3.png) no-repeat center center;
}

.quick-nav-box .item4 {
  background: url(../images/home/right-quick-nav4.png) no-repeat center center;
}

/* 疾病分类 */
.spec-class-container {
  width: 1190px;
  height: 335px;
  padding-top: 32px;
  box-sizing: border-box;
  background: url(../images/home/class-bg.jpg) no-repeat center;
  background-size: cover;
  margin: 0 auto;
}

.spec-class-container .class-tit {
  text-align: center;
  font-size: 26px;
  color: #efddc9;
}

.spec-class-container .class-main {
  width: 1160px;
  height: 182px;
  margin: 0 auto;
  margin-top: 34px;
}

.class-main .class-item {
  width: 145px;
  height: 91px;
  line-height: 91px;
  text-align: center;
  font-size: 20px;
  color: #efddc9;
  background: url(../images/home/grid-bg.png) no-repeat center;
  background-size: cover;
  cursor: pointer;
  position: relative;
}

.class-main .class-float-layer {
  width: 153px;
  height: 99px;
  color: #ffffff;
  opacity: 0;
  cursor: pointer;
  text-align: center;
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: 9;
  background: url(../images/home/hover-bg.png) no-repeat center;
  background-size: cover;
}

.class-float-layer .layer-tit {
  line-height: 30px;
}

.class-float-layer .see-detail {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  line-height: 16px;
}

/* 专家团队 */
.team-container {
  width: 100%;
  height: 854px;
  padding-top: 40px;
  box-sizing: border-box;
  background: url(../images/home/peo-bg.jpg) no-repeat center;
  background-size: cover;
}

.team-main {
  width: 1177px;
  margin: 0 auto;
  position: relative;
}

.team-main .team-tit {
  width: 1177px;
  height: 36px;
  line-height: 36px;
  background: url(../images/home/people-tit-bg.png) no-repeat center center;
  background-size: cover;
  color: #ffffff;
  box-sizing: border-box;
  position: relative;
  padding: 0 15px;
}

.team-main .news-left-title .tit {
  font-size: 22px;
}

.team-main .news-left-title ul {
  margin-left: 11px;
}

.team-main .news-left-title ul li:last-child {
  border-right: none;
}

.team-main .news-left-title ul li {
  line-height: 16px;
  padding: 0 15px;
  color: #ffffff;
  box-sizing: border-box;
  border-right: 2px solid #ffffff;
}

.team-swiper-container {
  width: 1166px;
  overflow-x: hidden;
  margin: 0 auto;
  margin-top: 32px;
}

.peo-box {
  width: 179px;
  height: 323px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  padding: 10px;
}

.peo-box img {
  width: 100%;
  height: 238px;
}

.peo-box .peo-intro {
  box-sizing: border-box;
  padding: 0 8px;
  color: #8a5a47;
  text-align: center;
  font-size: 14px;
}

.peo-box .peo-intro .tag {
  margin-top: 4px;
}

.team-main .team-swiper-button-prev,
.team-main .team-swiper-button-next {
  top: 238px;
  color: #d6d6d6;
}

.team-main .team-swiper-button-prev {
  left: -40px;
}

.team-main .team-swiper-button-next {
  right: -40px;
}

/* 医院科室 */
.depart-class {
  margin-top: 30px;
  box-sizing: border-box;
  padding: 0 32px;
  align-items: flex-start;
}

.depart-class-left {
  width: 320px;
  height: 275px;
}

.depart-class-left img {
  width: 320px;
  height: 92px;
  border-radius: 10px;
}

.depart-class-tit {
  font-size: 22px;
  color: #9a7150;
  margin-top: 0px;
  text-align: left;
}

.depart-class-intro {
  font-size: 14px;
  color: #9a7150;
  text-align: left;
  margin-top: 12px;
  line-height: 20px;
}
.depart-class-intro1 {
  font-size: 14px;
  color: #9a7150;
  text-align: left;
  margin-top: 12px;
  line-height: 20px;
}

.depart-class-right {
  flex: 1;
  margin-left: 27px;
}

.depart-tags-box {
  /* height: 275px; */
  display: flex;
  overflow: hidden;
  align-content: flex-start;
}

.depart-tags-box .active {
  background-color: #9a7150;
  color: #fff !important;
}

.depart-tags-box .depart-tags {
  padding: 0 15px;
  height: 31px;
  line-height: 31px;
  border-radius: 40px;
  color: #9a7150;
  font-size: 13px;
  text-align: center;
  margin-left: 18px;
  margin-bottom: 14px;
  cursor: pointer;
  border: 1px solid #9a7150;
}

/* 医院环境 */
.hospital-about-container {
  height: 540px;
}

.hospital-about-left {
  width: 40%;
  height: 100%;
}

.hospital-about-left .back-img {
  width: 100%;
  height: 100%;
}

.hospital-about-right {
  position: relative;
  width: 60%;
  height: 100%;
  box-sizing: border-box;
  padding: 46px;
}

.hospital-about-right .back-img {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.hospital-about-right .hospital-about-tit {
  font-size: 24px;
  color: #fff;
}

.hospital-about-right .hospital-about-intro {
  font-size: 24px;
  color: #a3a3a3;
  text-align: left;
  font-size: 16px;
  line-height: 25px;
  margin-top: 15px;
}

.hospital-about-img-box {
  height: 325px;
  width: 655px;
  margin-top: 30px;
}

.hospital-about-img-box a {
  display: block;
  height: 160px;
}

.hospital-about-img-box img {
  width: 217px;
  height: 160px;
  margin-bottom: 1px;
  margin-right: 1px;
}

/* 健康科普 */
.health-container {
  width: 100%;
  height: 408px;
  padding-top: 53px;
  box-sizing: border-box;
  background-size: cover;
}

.health-main {
  width: 1165px;
  margin: 0 auto;
  position: relative;
}

.health-main .health-tit {
  width: 923px;
  height: 36px;
  line-height: 36px;
  background: url(../images/home/health-tit-bg.png) no-repeat center center;
  background-size: cover;
  color: #ffffff;
  box-sizing: border-box;
  position: relative;
  padding: 0 15px;
}

.health-main .news-left-title .tit {
  font-size: 22px;
}

.health-left {
  width: 923px;
}

.health-left .text-content {
  padding: 0 10px 0 22px;
  width: 100%;
  align-items: flex-start;
}

.health-left .text-content .text-content-news {
  width: 436px;
  margin-top: 25px;
}

.health-right {
  width: 209px;
  height: 297px;
}

.health-right img {
  width: 209px;
  height: 297px;
}

/* footer */
.footer {
  background-color: #603726;
  width: 1190px;
  margin: 0 auto;
}

.footer .footer-header {
  width: 1190px;
  height: 165px;
  background-color: #4e2717;
}

.footer .footer-main {
  width: 1200px;
  margin: 0 auto;
}

.footer-header-left {
  width: 925px;
}

.footer-header-left .footer-icon {
  margin-left: 10px;
}

.footer-header-left .footer-header-box {
  margin-left: 30px;
}

.footer-header-left .footer-header-box .item {
  color: #c6a99a;
  font-size: 14px;
  margin-top: 11px;
}

.footer-header-right img {
  width: 96px;
  height: 96px;
  margin-right: 10px;
}

.footer-header-right img:first-child {
  margin-right: 22px;
}

.footer-center {
  margin-top: 22px;
}

.footer-bottom {
  text-align: left;
  font-size: 18px;
  color: #fff;
  width: 1178px;
  margin: 0 auto;
  margin-top: 28px;
}

.footer-bottom .link-box {
  font-size: 14px;
  color: #9f7a69;
  padding: 18px 0;
  border-top: 1px solid #714533;
  border-bottom: 1px solid #714533;
}

.footer-bottom .link-box a {
  margin-left: 12px;
}

.footer-bottom .link-box a:hover {
  color: #fff;
}

.footer-bottom .copyright {
  font-size: 14px;
  color: #9f7a69;
  padding: 20px 0;
}

.footer-navbar {
  display: flex;
}

.footer-navbar .navbar-item {
  font-size: 16px;
  color: #9f7a69;
  padding: 0 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align:center;
}

.footer-navbar .navbar-item .sub-nav {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.footer-navbar .navbar-item .sub-nav a {
  margin-top: 12px;
  text-align:center;
}

.footer-navbar .navbar-item a:hover {
  color: #FFFFFF;
}



.footer-navbar .navbar-item:last-child::after {
  content: "";
}

.footer-navbar .navbar-item::after {
  content: "/";
  position: absolute;
  right: 0;
  top: 1px;
}

/* 右侧浮层 */
.right-tel {
  width: 154px;
  height: 146px;
  position: fixed;
  right: 0;
  top: 300px;
  z-index: 20;
  background-image: url(../images/nav/righttel.png);
}

.right-layer {
  width: 39px;
  height: 157px;
  position: fixed;
  right: 0;
  top: 500px;
  z-index: 20;
  background-color: #fff;
  border: 1px solid #ddc9bf;
}

.right-layer .layer-item {
  height: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #ddc9bf;
}

.wechat-code,
.mobile-code {
  position: absolute;
  left: -97px;
  top: 0;
}

.right-layer .layer-item:last-child {
  border-bottom: none;
}


/* about.html */

.about-content {
  width: 100%;
  min-height: 800px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 50px;
  overflow: hidden;
}

.about-banner {
  width: 1190px;
  height: 200px;
  margin: 0 auto;
}

.about-banner img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.page-nav-box {
  width: 100%;
}

.page-nav {
  width: 1190px;
  margin-top: 10px;
}

.page-nav .item {
  padding: 0 10px;
  line-height: 24px;
  font-size: 18px;
  color: #975228;
  margin-top: 18px;
  border-right: 1px solid #d2c5bd;
}

.page-nav .item a {
  display: block;
  padding: 0 10px;
  font-size: 18px;
  transition: all .25s linear;
}

.page-nav .item:last-child {
  border-right: none;
}

.page-nav .item a:hover,
.page-nav .item a.active {
  background-color: #b8191d;
  color: #fff;
  border-radius: 20px;
}

.in-tit {
  margin-top: 27px;
  margin-left: auto;
  margin-right: auto;
  width: 1190px;
  font-weight: bold;
  text-align: center;
  line-height: 56px;
  font-size: 30px;
  background-color: #e5deda;
  color: #a77256;
}

.list-box .list-item {
  color: #857469;
  margin-top: 64px;
  text-align: left;
}

.list-box .list-item img {
  width: 256px;
  height: 217px;
}

.list-box .list-item .list-intro {
  margin-left: 25px;
  height: 217px;
  align-items: center;
}

.peo-name {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  font-size: 20px;
}

.peo-tag {
  width: 100%;
  font-weight: bold;
  margin-top: 6px;
  font-size: 18px;
}

.pro-work {
  width: 100%;
  margin-top: 35px;
  line-height: 28px;
  font-size: 18px;
}

/* 机构设置 */
#tfhover {
  width: 1050px;
  margin: 0 auto;
  margin-top: 48px;
}

.tftable {
  font-size: 12px;
  color: #333333;
  border-width: 1px;
  border-color: #bcaf91;
  border-collapse: collapse;
}

.tftable th {
  font-size: 12px;
  background-color: #6f4b39;
  border-width: 1px;
  padding: 8px;
  color: #fff;
  text-align: center;
  border-style: solid;
  border-color: #fff;
}

.tftable td {
  font-size: 12px;
  border-width: 1px;
  padding: 8px;
  color: #fff;
  text-align: center;
  border-style: solid;
  border-color: #fff;
}

.tftable tr:nth-child(even) td {
  background-color: #b89786;
}

.tftable tr:nth-child(odd) td {
  background-color: #d4af9c;
}

/* 分支机构 */

.branch-origin-box .list-item {
  width: 49%;
}

.branch-origin-box .list-item .pro-work {
  line-height: 20px;
}

/* 分页 */

.pagination-container {
  width: 100%;
  margin: 0 auto;
  margin-top: 84px;
  text-align: center;
}

ul.pagination {
  display: inline-block;
  padding: 0;
  margin: 0 auto;
}

ul.pagination li {
  display: inline;
}

ul.pagination li a {
  color: #945b35;
  float: left;
  padding: 5px 10px;
}

ul.pagination li a.active {
  background-color: #945b35;
  color: white;
}

ul.pagination li a:hover:not(.active) {
  background-color: #ddd;
}

/* 院务公开 */

.word-box .list-word-title {
  color: #945b35;
  width: 90%;
  font-size: 16px;
}

.word-box .list-word-title:hover {
  color: #d81313;
}

.word-box .list-word-time {
  padding: 0 5px;
  height: 20px;
  background-color: #dbc1b7;
  text-align: center;
  line-height: 20px;
  color: #fff;
}

.word-box a:first-child .list-item {
  margin-top: 34px;
}

.word-box .list-item,
.word-box a {
  margin-top: 18px;
}

.news-center-left-main .text-content .text-content-news li {
  margin-top: 16px!important;
}

/* 院务公开详情 */

.rich-text {
  color: #857469;
  margin-top: 60px;
  font-size: 18px;
  line-height: 1.8;
}

.rich-text img {
  margin: 10px;
  color: transparent;
}



.detail-container .detail-header .detail-title {
  color: #6e3d29;
  font-weight: bold;
  margin-top: 34px;
  font-size: 30px;
}

.detail-container .detail-header .detail-sub-title {
  color: #916d5f;
  margin-top: 12px;
  font-size: 24px;
}

.detail-container .detail-pv-time {
  line-height: 35px;
  color: #916d5f;
  margin-top: 18px;
  border-bottom: 1px solid #e2d1cb;
}

.detail-container .rich-text {
  margin-top: 34px;
}

.detail-container .detail-footer {
  margin-top: 34px;
  border-top: 1px solid #e2d1cb;
}

.detail-container .detail-footer .prev-item,
.detail-container .detail-footer .next-item {
  max-width: 48%;
  line-height: 35px;
  color: #916d5f;
}

.detail-container .detail-footer .prev-item:hover,
.detail-container .detail-footer .next-item:hover {
  color: #d81313;
}

/* 医院环境 */

.img-list-container {
  width: 1155px;
  margin: 0 auto;
  padding-top: 20px;
}

.img-list-box .img-list-item {
  margin-left: 18.3333px;
  width: 275px;
  height: 207px;
  position: relative;
  margin-top: 40px;
}

.img-list-box .img-list-item:nth-child(4n+1) {
  margin-left: 0;
}

.img-list-box .img-list-item img {
  width: 275px;
  height: 207px;
}

.img-list-box .img-list-item:hover .img-mask-info {
  opacity: 1;
}

.img-list-box .img-mask-info {
  transition: opacity .3s ease-in-out;
  opacity: 0;
  width: 100%;
  height: 100%;
  line-height: 207px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, .5);
}

.img-mask-info .focus-border:before,
.img-mask-info .focus-border:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: 0.3s;
}

.img-mask-info .focus-border:after {
  bottom: 8px;
  left: 8px;
  right: auto;
  top: auto;
}

.img-mask-info .focus-border i:before,
.img-mask-info .focus-border i:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 1px;
  height: 0;
  background-color: #fff;
  transition: 0.4s;
}

.img-mask-info .focus-border i:after {
  right: 8px;
  left: auto;
  top: 8px;
  bottom: auto;
}

.img-list-box .img-list-item:hover .img-mask-info .focus-border:before,
.img-list-box .img-list-item:hover .img-mask-info .focus-border:after {
  width: 258px;
  transition: 0.3s;
}

.img-list-box .img-list-item:hover .img-mask-info .focus-border i:before,
.img-list-box .img-list-item:hover .img-mask-info .focus-border i:after {
  height: 190px;
  transition: 0.4s;
}


/* 专家介绍详情 */

.per-intro-container {
  margin-top: 40px;
}

.per-intro-container .per-img {
  width: 306px;
  height: 448px;
  border: 1px solid #e0e0e0;
}

.per-intro-container .per-img img {
  width: 283px;
  height: 425px;
}

.per-intro-box {
  flex: 1;
  margin-left: 34px;
  overflow: hidden;
  color: #857469;
}

.per-intro-box .per-name {
  font-size: 20px;
  margin-top: 10px;
  font-weight: bold;
}

.per-intro-box .per-intro {
  font-size: 16px;
  margin-top: 10px;
  font-weight: bold;
	line-height:25px;
}

.per-intro-box .per-content {
  font-size: 16px;
  margin-top: 40px;
  line-height: 30px;
}

/* 专家列表 */

.peo-list-container {
  width: 1166px;
  margin: 0 auto;
  padding-top: 24px;
}

.peo-list-container .peo-box:nth-child(6n+1) {
  margin-left: 0;
}

.peo-list-container .peo-box {
  margin-left: 18.4px;
  margin-top: 18px;
}

/* 图片轮播弹出层 */
.img-swiper-layer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.25s linear 0s;
  transform: scale(1.2);
  background-color: rgba(0, 0, 0, 0.7)
}

.img-swiper-layer .img-swiper-layer-main {
  width: 1106px;
  height: 595px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.img-preview-container {
  width: 793px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.img-preview-container .swiper-slide {
  width: 793px;
  height: 595px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.img-preview-container .swiper-slide img {
  width: 100%;
  height: auto;

}

.img-swiper-layer .swiper-button-next {
  right: 0;
}

.img-swiper-layer .swiper-button-prev {
  left: 0;
}

.img-swiper-layer .swiper-button-next,
.img-swiper-layer .swiper-button-prev {
  color: #fff;
  font-size: 22px;
}

/* 联系我们 */
.map-box {
  width: 1139px;
  height: 332px;
  margin: 0 auto;
  margin-top: 65px;
}

#myMap {
  width: 100%;
  height: 100%;
}

/* 科研天地 */

.word-img-content {
  margin-top: 45px;
  padding-left: 22px;
  padding-right: 33px;
}

.word-img-content .news-text {
  margin-left: 0;
}

.word-img-content .header-news-box .text-content {
  margin-left: 26px;
  width: 805px;
  height: 259px;
}

.word-img-content .header-news-box .text-content .intro {
  line-height: 23px;
  width: 100%;
}

.word-img-content .header-news-box .text-content .tit {
  margin-top: 6px;
}

.word-img-content .header-news-box .image-box {
  width: 306px;
}

.word-img-content .header-news-box .image-box img {
  width: 100%;
  height: 215px;
}

.word-img-content .header-news-box .image-box .bot-text {
  width: 100%;
  border: 1px solid #d8d8d8;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #8a5a47;
  box-sizing: border-box;
  padding: 0 6px;
  /*margin-top: 4px;*/
}

.word-img-content .bottom-news-box {
  margin-top: 23px;
}

.word-img-content .bottom-news-box .text-content {
  width: 1137px;
}

.word-img-content .bottom-news-box .text-content .news-time {
  width: 78px;
  background-color: #dbc1b7;
}

.word-img-content .bottom-news-box .text-content .text-content-news li {
  margin-top: 20px;
}

.about-short-content {
  width: 100%;
  min-height: 780px;
  background-image: url(../images/about/about-bg.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 50px;
  overflow: hidden;
}

/* 医养结合 */
.word-imgs-content .text-content .intro,
.word-imgs-content .text-content .tit {
  color: #857469;
}

.word-imgs-content .text-content .intro {
  margin-top: 30px;
}

.word-imgs-content .header-news-box .text-content {
  height: 215px;
}